home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1464.dms / var1464.adf / devs / MountList < prev    next >
Text File  |  1992-01-27  |  4KB  |  174 lines

  1.  
  2. /* The CNC device must be mounted for the BBS to operate. Failure to mount
  3.    the CNC: device will cause the BBS to throw up a requestor and hang. CNC:
  4.    is part of the package called conman13e.lzh.
  5. */
  6.  
  7. CNC:  Handler        = L:ConHandler
  8.       StackSize      = 2400
  9.       Priority       = 5
  10.       GlobVec        = 0
  11. #
  12.  
  13. /* Entries to mount the normal DF0: and DF1: as FF0: and FF1:, those new
  14.  * handlers will use FFS.
  15.  */
  16. FF0:       Device = trackdisk.device
  17.            FileSystem = l:FastFileSystem
  18.            GlobVec = -1
  19.            Mask = 0x7FFF
  20.            Unit   = 0
  21.            Flags  = 1
  22.            Surfaces  = 2
  23.            Mount = 1
  24.            BlocksPerTrack = 11
  25.            Reserved = 2
  26.            PreAlloc = 11
  27.            Interleave = 0
  28.            LowCyl = 0  ;  HighCyl = 79
  29.            Buffers = 5
  30.            BufMemType = 3
  31.            DosType = 0x444F5301
  32. #
  33.  
  34. FF1:       Device = trackdisk.device
  35.            FileSystem = l:FastFileSystem
  36.            GlobVec = -1
  37.            Mask = 0x7FFe
  38.            Unit   = 1
  39.            Flags  = 1
  40.            Surfaces  = 2
  41.            Mount =1
  42.            BlocksPerTrack = 11
  43.            Reserved = 2
  44.            PreAlloc = 11
  45.            Interleave = 0
  46.            LowCyl = 0  ;  HighCyl = 79
  47.            Buffers = 5
  48.            BufMemType = 3
  49. #
  50.  
  51.  
  52. /* MountList for V1.3 */
  53.  
  54. /*  Mount Entry for the new Console Handler */
  55.  
  56. NEWCON:
  57.     Handler = L:newcon-handler
  58.     Priority = 5
  59.     StackSize = 1000
  60. #
  61.  
  62. /* This is an example of a non-filing system mount using a handler written
  63.    in C.
  64. */
  65.  
  66. SPEAK:     
  67.     Handler = L:Speak-Handler
  68.     Stacksize = 6000
  69.     Priority = 5
  70.     GlobVec = -1
  71. #
  72.  
  73. /*  This is an example of an alternative type of non-filing device mount,
  74.     used to mount the non-buffered serial handler
  75. */
  76.  
  77. AUX:
  78.     Handler = L:Aux-Handler
  79.     Stacksize = 1000
  80.     Priority = 5
  81. #
  82. /*  This is a non-filing system device */
  83.  
  84. PIPE:      
  85.     Handler = L:Pipe-Handler
  86.     Stacksize = 6000
  87.     Priority = 5
  88.     GlobVec = -1
  89. #
  90.  
  91. /* This is an example of a mount list entry for using the recoverable 
  92.    ram disk.  Depending on the amount of memory you wish to devote to
  93.    it, you may want to change the HighCyl value.
  94. */
  95.  
  96. RAD:       Device = ramdrive.device
  97.            Unit   = 0
  98.            Flags  = 0
  99.            Surfaces  = 2
  100.            BlocksPerTrack = 11
  101.            Reserved = 2
  102.            Interleave = 0
  103.            LowCyl = 0  ;  HighCyl = 79
  104.            Buffers = 5
  105.            BufMemType = 1
  106. #
  107.  
  108. /* Mount a 5.25" disk drive to be mounted as DF2: */
  109.  
  110. DF2:       Device = trackdisk.device
  111.            Unit   = 2
  112.            Flags  = 1
  113.            Surfaces  = 2
  114.            BlocksPerTrack = 11
  115.            Reserved = 2
  116.            Interleave = 0
  117.            LowCyl = 0  ;  HighCyl = 39
  118.            Buffers = 20
  119.            BufMemType = 3
  120. #
  121.  
  122. /* An example mount entry using the fast file system with a partition
  123.    of the hard disk using the 2090 disk controller.  PREP has been
  124.    used to create the first partition (up to cylinder 20).  The second
  125.    partition is MOUNTed, using the following entry:
  126.    NOTE: Some hard disk drivers require more stack than specified here.
  127.    Some may required less.
  128.    (The hard disk is not included; this is only an example.)
  129. */
  130.  
  131. FAST:
  132.     Device = hddisk.device
  133.     FileSystem = l:FastFileSystem
  134.     Unit   = 1
  135.     Flags  = 0
  136.     Surfaces  = 4
  137.     BlocksPerTrack = 17
  138.     Reserved = 2
  139.     Interleave = 0
  140.     LowCyl = 21  ;  HighCyl = 800
  141.     Buffers = 30
  142.     GlobVec = -1
  143.     BufMemType = 1
  144.     Mount = 1
  145.     DosType = 0x444F5301
  146.     StackSize = 4000
  147. #
  148.  
  149. /* Let's say you have an A2000 with an internal drive, and an external
  150.    drive, and you want to refer to the external drive as DF1: as well
  151.    as DF2:   Well, this MountList entry will do it for you.  This technique
  152.    can be extended to provide you with a drive A: and B: if you really
  153.    want.
  154. */
  155.  
  156. DF1:       Device = trackdisk.device
  157.            Unit   = 2
  158.            Flags  = 1
  159.            Surfaces  = 2
  160.            BlocksPerTrack = 11
  161.            Reserved = 2
  162.            Interleave = 0
  163.            LowCyl = 0  ;  HighCyl = 79
  164.            Buffers = 20
  165.            BufMemType = 3
  166. #
  167.  
  168. AUX:
  169.     Handler = L:Aux-Handler
  170.     Stacksize = 1000
  171.     Priority = 5
  172. #
  173.  
  174.